Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
1 definition found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
Common Gateway Interface
cgi-bin
CGI program
CGI script
CGI Test
Your IP address is: localhost
The CGI program might be saved as the file "test.pl" in the
appropriate directory on a web server,
e.g. "/home/httpd/test".
Accessing the appropriate URL, e.g.
http://acme.com/test/test.pl, would cause the program to
run and a custom page produced and returned.
Early web servers required all CGI programs to be installed in
one directory called cgi-bin but it is better to keep them
with the HTML files to which they relate unless they are truly
global to the site. Similarly, it is neither necessary nor
desirable for all CGI programs to have the extension ".cgi".
Each CGI request is handled by a new process. If the process
fails to terminate for some reason, or if requests are
received faster than the server can respond to them, the
server may become swamped with processes. In order to improve
performance, Netscape devised NSAPI and Microsoft
developed the ISAPI standard which allow CGI-like tasks to
run as part of the main server process, thus avoiding the
overhead of creating a new process to handle each CGI
invocation. Other solutions include mod_perl and FastCGI.
Latest version: CGI/1.1.
http://hoohoo.ncsa.uiuc.edu/cgi.
(2007-05-22)